home *** CD-ROM | disk | FTP | other *** search
- #ifndef __KH_OOPIC_H_
- #define __KH_OOPIC_H_
-
- /* OOPic with window-directed output.
- */
-
- #include "oopic.h"
- #include "window.h"
-
- class KH_OOPic : public OOPic, public Window
- {
- public:
- KH_OOPic(rect coordinates, char* fName = "",
- BORDERS b_type = SHOW_BORDER)
- : OOPic(),
- Window(coordinates, fName, "", 0, b_type) {}
- virtual void show();
- virtual void exe(int act = 0);
- void get_event(); // Overload base function
- virtual void terminate();
- };
-
-
- #endif __KH_OOPIC_H_